     /* Footer Styles */
     .heritage-footer {
        background-color: #212529;
        color: #f8f9fa;
        position: relative;
    }
    
    .footer-heading {
        position: relative;
        padding-bottom: 15px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #FF9933, #138808);
    }
    
    .footer-links {
        padding: 0;
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #adb5bd;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        padding-left: 15px;
    }
    
    .footer-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #FF9933;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #fff;
        padding-left: 20px;
    }
    
    .footer-links a:hover::before {
        background-color: #138808;
    }
    
    .social-icons {
        display: flex;
        gap: 10px;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background-color: #FF9933;
        color: #fff;
        transform: translateY(-3px);
    }
    
    .newsletter-section {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-form .form-control {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        color: #fff;
    }
    
    .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .footer-bottom-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-end;
    }
    
    .footer-bottom-links li {
        margin-left: 20px;
    }
    
    .footer-bottom-links a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
        color: #fff;
    }
    
    /* Tricolor border at the bottom of the footer */
    .tricolor-border {
        display: flex;
        height: 5px;
        width: 100%;
    }
    
    .orange-section {
        flex: 1;
        background-color: #FF9933;
    }
    
    .white-section {
        flex: 1;
        background-color: #FFFFFF;
    }
    
    .green-section {
        flex: 1;
        background-color: #138808;
    }
    
    @media (max-width: 768px) {
        .footer-bottom-links {
            justify-content: flex-start;
            margin-top: 10px;
        }
        
        .footer-bottom-links li {
            margin-left: 0;
            margin-right: 20px;
        }
    }

    /* Navbar Styles - Updated with tricolor theme */
.navbar {
padding: 15px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
background: linear-gradient(90deg, rgba(255,153,51,0.1) 0%, rgba(255,255,255,0.1) 50%, rgba(19,136,8,0.1) 100%);
}

.navbar-brand {
font-weight: bold;
font-size: 1.8rem;
color: #434A54;
display: flex;
align-items: center;
}

.navbar-brand:hover .brand-text {
animation: animate__rubberBand;
animation-duration: 1s;
}

/* Updated brand text to match tricolor theme */
.brand-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 1.6rem;
background: linear-gradient(90deg, #FF9933, #FFFFFF, #138808);
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
text-fill-color: transparent;
-webkit-text-fill-color: transparent;
animation: textGradient 5s linear infinite;
letter-spacing: -0.5px;
margin-left: 5px;
}

@keyframes textGradient {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}

/* Enhanced navbar styles with hover effects */
.navbar-nav .nav-link {
position: relative;
margin: 0 10px;
padding: 8px 0;
color: #434A54;
font-weight: 500;
transition: color 0.3s ease;
}

.navbar-nav .nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #FF9933, #138808);
transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #FF9933;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
width: 100%;
}

/* Active nav item */
.navbar-nav .nav-link.active {
font-weight: 600;
color: #FF9933;
}

/* Login button hover effect */
.navbar-nav .btn-primary {
background: linear-gradient(135deg, #FF9933 0%, #FF7E33 100%);
border-color: #FF9933;
position: relative;
overflow: hidden;
z-index: 1;
transition: transform 0.3s, box-shadow 0.3s;
}

.navbar-nav .btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
.navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.navbar-nav .nav-link {
    padding: 10px 0;
}

.navbar-nav .btn-primary {
    margin-top: 10px;
    display: block;
    text-align: center;
}
}
/* Enhanced common _navfot.css with improved styling for all heritage site pages */

/* Improved Container Styles for Heritage Site Pages */
.container {
    padding: 30px 20px;
    max-width: 1200px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #434A54;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF9933, #138808);
    border-radius: 3px;
}

/* Enhanced Image Carousel */
.carousel {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-inner img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    margin: 0 15px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* Map Container */
.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.map iframe {
    width: 100%;
    border: none;
    height: 280px;
}

/* 360° View Container */
.view-360 {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.view-360:hover {
    transform: translateY(-5px);
}

.view-360 p {
    margin-top: 12px;
    color: #FF9933;
    font-weight: 600;
    text-align: center;
}

/* Text Content Styling */
.text-justify {
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
    color: #555;
}

ul.text-justify li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

ul.text-justify li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF9933;
}

ul.text-justify li:nth-child(even)::before {
    color: #138808;
}

/* Enhanced Section for Hotels & Restaurants */
.sub-section-title {
    font-size: 18px;
    color: #FF9933;
    margin-bottom: 15px;
    font-weight: 600;
}

.list-unstyled li {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

.list-unstyled li strong {
    display: block;
    margin-bottom: 5px;
    color: #434A54;
}

.list-unstyled .text-muted {
    font-size: 14px;
    line-height: 1.5;
}



.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF9933;
    color: #fff;
    transform: translateY(-3px);
}

.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 12px 15px;
    height: auto;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, #FF9933 0%, #FF7E33 100%);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Tricolor border at the bottom of the footer */
.tricolor-border {
    display: flex;
    height: 5px;
    width: 100%;
}

.orange-section {
    flex: 1;
    background-color: #FF9933;
}

.white-section {
    flex: 1;
    background-color: #FFFFFF;
}

.green-section {
    flex: 1;
    background-color: #138808;
}

/* Enhanced Row Styling */
.row {
    margin-bottom: 30px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.97);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .btn-primary {
        margin-top: 15px;
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .carousel-inner img {
        height: 250px;
    }
    
    .map iframe {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
        flex-wrap: wrap;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .carousel-inner img {
        height: 200px;
    }
}

/* Hover animations for visual appeal */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.footer-brand img:hover {
    animation: pulse 1s infinite;
}